home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2000 February / DPPCPRO0200.ISO / ps10.dxr / Scripts_6_Navigation Rollover.ls < prev    next >
Encoding:
Text File  |  1999-10-26  |  537 b   |  25 lines

  1. property rolloverName
  2. global gVOPlaying
  3.  
  4. on mouseEnter me
  5.   set the member of sprite the currentSpriteNum to member(rolloverName & " roll")
  6. end
  7.  
  8. on mouseLeave me
  9.   set the member of sprite the currentSpriteNum to member(rolloverName)
  10. end
  11.  
  12. on mouseUp me
  13.   if gVOPlaying then
  14.     puppetSound(1, 0)
  15.     gVOPlaying = 0
  16.   end if
  17.   go(rolloverName)
  18. end
  19.  
  20. on getPropertyDescriptionList
  21.   description = [:]
  22.   addProp(description, #rolloverName, [#default: EMPTY, #format: #string, #comment: "Rollover/Destination Name"])
  23.   return description
  24. end
  25.